home *** CD-ROM | disk | FTP | other *** search
/ Exploring Creation with P…al Science (2nd Edition) / Exploring Creation with Physical Science (2nd Edition).iso / exe / bin / Styles / user / structuretables.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2012-12-18  |  2.7 KB  |  82 lines

  1. @charset "utf-8";
  2. /*    Name: 1457933711 */
  3. /*    Document structure inspector - tables.
  4.     Adds an outline and appends a tag name for all table elements.
  5.     Copyright 2007 Opera Software */
  6. table {outline: 4px solid rgb(51,102,204) !important;}
  7. table table {margin: 20px !important;}
  8. table::before, table::after, 
  9. thead::before, thead::after, 
  10. tfoot::before, tfoot::after, 
  11. tbody::before, tbody::after, 
  12. tr::before, tr::after, 
  13. th::before, th::after,  
  14. td::before, td::after, 
  15. caption::before, caption::after, 
  16. colgroup::before, colgroup::after, col {
  17.     font-family: sans-serif !important;
  18.     font-size: 11px !important;
  19.     font-weight: bold !important;
  20.     font-style: normal !important;
  21.     text-decoration: none !important;
  22.     white-space: nowrap !important;
  23.     color: rgb(30,30,30) !important;
  24.     background-color: rgb(255,204,0) !important;
  25.     background-image: none !important;
  26.     outline: 1px solid #010101;
  27.     padding: 0px !important;
  28.     margin: 0px !important;
  29.     float: none !important;
  30.     position: static !important;
  31.     display: inline-block !important;
  32. }
  33. table::before, table::after {
  34.     font-size: 13px !important;
  35.     color: rgb(226,228,235) !important;
  36.     background-color: rgb(46,61,77) !important;
  37. }
  38. tr::before, tr::after, th::before, th::after, td::before, td::after {
  39.     color: rgb(226,228,235) !important;
  40.     background-color: rgb(51,102,204) !important;
  41. }
  42. table::before {content: '<table>' !important;}
  43. table[summary]::before {
  44.     content: '<table summary=' '\0022' attr(summary) 
  45.         '\0022' '>' !important;
  46. }
  47. table::after {content: '</table>' !important;}
  48. thead::before {content: '<thead>' !important;}
  49. thead::after {content: '</thead>' !important;}
  50. tfoot::before {content: '<tfoot>' !important;}
  51. tfoot::after {content: '</tfoot>' !important;}
  52. tbody::before {content: '<tbody>' !important;}
  53. tbody::after {content: '</tbody>' !important;}
  54. tr::before {content: '<tr>' !important;}
  55. tr::after {content: '</tr>' !important;}
  56. th::before {content: '<th>' !important;}
  57. th::after {content: '</th>' !important;}
  58. th[scope]::before {
  59.     content: '<th scope=' '\0022'  attr(scope) '\0022' '>' !important;
  60. }
  61. td::before {content: '<td>' !important;}
  62. td::after {content: '</td>' !important;}
  63. caption::before {content: '<caption>' !important;}
  64. caption::after {content: '</caption>' !important;}
  65. colgroup::before {content: '<colgroup>' !important;}
  66. colgroup::after {content: '</colgroup>' !important;}
  67.  
  68. col {
  69.     content: '<col/>';
  70. }
  71. col[width] {
  72.     content: '<col width=' '\0022' attr(width) '\0022' '/>';
  73. }
  74. col[align] {
  75.     content: '<col align=' '\0022' attr(align) '\0022' '/>';
  76. }
  77. col[align][width] {
  78.     content: '<col align=' '\0022' attr(align) 
  79.         '\0022' '\0020' '\0022' attr(width) '\0022' '/>';
  80. }
  81.  
  82.